home *** CD-ROM | disk | FTP | other *** search
/ PCNet 1998 May / PCnet Mayıs 1998.iso / Multimed / Program / A_Trial.exe / data.z / Position.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-12-04  |  520 b   |  12 lines

  1. public class Position {
  2.    public Object element;
  3.  
  4.    public String toString() {
  5.       return this.element == null ? "Position -- no element" : "Position " + this.element.toString();
  6.    }
  7.  
  8.    public Position(Object var1) {
  9.       this.element = var1;
  10.    }
  11. }
  12.